home *** CD-ROM | disk | FTP | other *** search
- /*
- ┌────────────────────────────────────────────────────────────────────────────┐
- │ Color.c │
- │ Set the global colors used with the window and wprintf routines │
- │ Usage │
- │ color(WHITE,BLUE); │
- │ │
- │ (C) JazSoft Software by Jack A. Zucker (301) 794-5950 │
- └────────────────────────────────────────────────────────────────────────────┘
- */
-
- extern int g_fore,g_back,_attr;
- color( ffore , fback )
- int ffore , fback;
- {
- g_fore = ffore;
- g_back = fback;
- _attr = g_back * 16 | g_fore & 0x7f;
- }